home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / SRC / QLIB / ABORT.ASM next >
Assembly Source File  |  1997-07-09  |  214b  |  17 lines

  1. include qlib.inc
  2. include process.inc
  3.  
  4. .data
  5.   abort_msg db 'Abnormal program termination',13,10,'$'
  6.  
  7. .code
  8. abort proc
  9.   mov edx,offset abort_msg
  10.   mov ah,9
  11.   int 21h
  12.   callp exit,3
  13. abort endp
  14.  
  15. end
  16.  
  17.